home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 60 / IOPROG_60.ISO / soft / c++ / gsl-1.1.1-setup.exe / {app} / src / specfunc / check.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-07-10  |  129 b   |  4 lines

  1. /* check for underflow */
  2.  
  3. #define CHECK_UNDERFLOW(r) if (fabs((r)->val) < GSL_DBL_MIN) GSL_ERROR("underflow", GSL_EUNDRFLW);
  4.